Passed
Branch master (6ac629)
by Rafael S.
06:42
created

decode.js ➔ ... ➔ it(ꞌsamples.length should be > 0ꞌ)   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
nc 1
dl 0
loc 3
rs 10
nop 0
1
/*!
2
 * Copyright (c) 2018 Rafael da Silva Rocha.
3
 * 
4
 */
5
6
var assert = require('assert');
7
8
describe('decode', function() {
9
    let imaadpcm = require("../index.js")
10
    it("samples.length should be > 0",
11
        function() {
12
            assert.ok(imaadpcm.decode([0]));
13
        });
14
});
15